From: Siebrand Mazeland Date: Sun, 17 May 2009 14:57:30 +0000 (+0000) Subject: (bug 18522) Wrap MediaWiki:Protect-cascadeon in a div for identification (patch by... X-Git-Tag: 1.31.0-rc.0~41773 X-Git-Url: http://git.cyclocoop.org/%22.%24info%5B?a=commitdiff_plain;h=1f4160caa118076e66d09310fb120235384f5edd;p=lhc%2Fweb%2Fwiklou.git (bug 18522) Wrap MediaWiki:Protect-cascadeon in a div for identification (patch by Happy-melon) --- diff --git a/RELEASE-NOTES b/RELEASE-NOTES index 41eb2c32e3..d11763df55 100644 --- a/RELEASE-NOTES +++ b/RELEASE-NOTES @@ -125,6 +125,7 @@ it from source control: http://www.mediawiki.org/wiki/Download_from_SVN $wgSysopEmailBans * (bug 16912) Tooltips on images with link= disappear * (bug 18389) Localise numbers in EXIF data +* (bug 18522) Wrap MediaWiki:Protect-cascadeon in a div for identification == API changes in 1.16 == diff --git a/includes/ProtectionForm.php b/includes/ProtectionForm.php index b93c840f44..48d987d017 100644 --- a/includes/ProtectionForm.php +++ b/includes/ProtectionForm.php @@ -192,7 +192,7 @@ class ProtectionForm { $titles .= '* [[:' . $title->getPrefixedText() . "]]\n"; } - $wgOut->wrapWikiMsg( "$1\n$titles", array( 'protect-cascadeon', count($cascadeSources) ) ); + $wgOut->wrapWikiMsg( "
$1\n" . $titles . "
", array( 'protect-cascadeon', count($cascadeSources) ) ); } $sk = $wgUser->getSkin();